mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-23 04:49:50 -04:00
10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
import { GenerateId } from 'jss';
|
|
|
|
export interface GenerateClassNameOptions {
|
|
disableGlobal?: boolean;
|
|
productionPrefix?: string;
|
|
seed?: string;
|
|
}
|
|
|
|
export default function createGenerateClassName(options?: GenerateClassNameOptions): GenerateId;
|