Skip to content

Instantly share code, notes, and snippets.

@jtlapp
Created March 23, 2022 02:53
Show Gist options
  • Save jtlapp/f30e9db5298db9639d57eda53217efad to your computer and use it in GitHub Desktop.
Save jtlapp/f30e9db5298db9639d57eda53217efad to your computer and use it in GitHub Desktop.
Demo MainApi1 with type checking
export class MainApi1 implements ElectronMainApi<MainApi1> {
methodA(arg1: string, arg2: number): Promise<void> {
// code for methodA
}
methodB(): Promise<number> {
// code for methodB
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment