5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-07 18:10:51 +08:00
wails/v2/pkg/commands/build/internal/backendjs/package.d.template
2020-10-30 15:06:25 +11:00

15 lines
452 B
Plaintext

// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
{{range .Comments}}// {{.}}{{end}}
{{range .Methods}}
/**{{if .Comments }}
{{range .Comments}} * {{ . }}{{end}}
*{{end}}
* @function {{.Name}}
{{range .Inputs}} * @param {{"{"}}{{.JSType}}{{"}"}} {{.Name}}
{{end}} *
* @returns {Promise}
*/
export function {{.Name}}({{.InputsAsTSText}}): Promise<{{.OutputsAsTSText}}>;
{{end}}