mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +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()'
|
|
}
|
|
} |