1
0
Fork 0
mirror of synced 2024-07-03 21:50:34 +12:00
appwrite/public/sdk-console/id.ts

9 lines
164 B
TypeScript
Raw Normal View History

2022-09-20 20:32:05 +12:00
export class ID {
public static custom(id: string): string {
return id
}
public static unique(): string {
return 'unique()'
}
}