graphic-pixi/lib/core/IdGenerator.d.ts
2023-12-14 13:11:42 +08:00

13 lines
264 B
TypeScript

/**
* ID生成器
*/
export declare class IdGenerator {
serial: number;
type: string;
constructor(type: string);
next(): number;
getType(): string;
initSerial(serial: number): void;
}
export declare const GraphicIdGenerator: IdGenerator;