mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 14:41:29 +08:00
10 lines
207 B
Cheetah
10 lines
207 B
Cheetah
// models.d.ts
|
|
// This file should contain any models that are used by the plugin.
|
|
|
|
export namespace {{.Name}}Plugin {
|
|
export interface Hashes {
|
|
MD5: string;
|
|
SHA1: string;
|
|
SHA256: string;
|
|
}
|
|
} |