1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00
appwrite/public/sdk-web/id.ts
2022-09-20 14:07:51 +05:30

9 lines
164 B
TypeScript

export class ID {
public static custom(id: string): string {
return id
}
public static unique(): string {
return 'unique()'
}
}