6 lines
102 B
TypeScript
6 lines
102 B
TypeScript
import type { UUID } from "../types/uuid.ts";
|
|
|
|
export interface UUIDGenerator {
|
|
generate(): UUID;
|
|
}
|