mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-29 20:12:28 +03:00
d12b403e7d
* create directories when scaffolding, if needed * refresh export cache after scaffolding * better process for ensuring a blank line between old code and new scaffolded code
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
import { {{upperDeclName}} } from '@wasp/queries/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?}}
|