1
Fork 0
tildes-reextended/source/types.d.ts

16 lines
329 B
TypeScript
Raw Normal View History

// A fix for TypeScript so it sees this file as a module and thus allows to
// modify the global scope.
export {};
// See the initialize function located in `utilities/index.ts` for actual code.
type TildesReExtended = {
debug: boolean;
};
declare global {
interface Window {
TildesReExtended: TildesReExtended;
}
}