mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-04 06:58:02 +00:00
2c47d90f34
* chore(lint): configure project-wide linter * chore(lint): improve linting in files * chore(lint): hide warnings in CI
21 lines
417 B
TypeScript
21 lines
417 B
TypeScript
declare module '*.scss' {
|
|
const content: Record<string, string>;
|
|
export default content;
|
|
}
|
|
|
|
type ListenerType = (event: 'string', args: unknown[]) => void;
|
|
|
|
declare global {
|
|
interface Window {
|
|
ipcRenderer: {
|
|
send: (channel: string, args?: string | object) => void;
|
|
on: (channel: string, listener: ListenerType) => void;
|
|
};
|
|
process: {
|
|
type: string;
|
|
};
|
|
}
|
|
}
|
|
|
|
export default {};
|