mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
|
|
export class ID {
|
||
|
|
public static custom(id: string): string {
|
||
|
|
return id
|
||
|
|
}
|
||
|
|
|
||
|
|
public static unique(): string {
|
||
|
|
return 'unique()'
|
||
|
|
}
|
||
|
|
}
|