5 lines
143 B
TypeScript
5 lines
143 B
TypeScript
|
export interface IGuidGenerator {
|
||
|
generateGuid(): string;
|
||
|
isGuid(guid: string): boolean;
|
||
|
}
|
||
|
//# sourceMappingURL=IGuidGenerator.d.ts.map
|