11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
import { GenerateClassName } from 'jss';
|
|
|
|
interface GenerateClassNameOptions {
|
|
dangerouslyUseGlobalCSS?: boolean;
|
|
productionPrefix?: string;
|
|
}
|
|
|
|
export default function createGenerateClassName(
|
|
options?: GenerateClassNameOptions,
|
|
): GenerateClassName<any>;
|