mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-28 11:34:41 +03:00
13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
import { {{upperDeclName}} } from 'wasp/server/actions/types'
|
|
|
|
type {{upperDeclName}}Input = void
|
|
type {{upperDeclName}}Output = void
|
|
|
|
{{#named?}}export {{/named?}}const {{name}}: {{upperDeclName}}<{{upperDeclName}}Input, {{upperDeclName}}Output> = async (args, context) => {
|
|
// Implementation goes here
|
|
}
|
|
|
|
{{#default?}}
|
|
export default {{name}}
|
|
{{/default?}}
|