RenaiApp/src/types/ipc.ts

10 lines
139 B
TypeScript

const enum IpcChannels {
Credentials = 'CREDENTIALS',
Pong = 'PONG',
}
interface ICredentials {
name: string;
password: string;
}