@bengo.co/typescript-web-starter
Version:
A simple website project written in TypeScript. Use this as a starting point for your project.
14 lines (13 loc) • 311 B
TypeScript
declare module "react-jss/lib/jss" {
export interface SheetsRegistryConstructor {
new (): SheetsRegistry;
}
// export const SheetsRegistry: SheetsRegistryConstructor
/**
* as-needed type for react-jss SheetsRegistry
*/
export class SheetsRegistry {
constructor();
public toString(): string;
}
}