Complete Email Sortierer implementation with Appwrite and Stripe integration
This commit is contained in:
22
server/node_modules/node-appwrite/dist/id.d.ts
generated
vendored
Normal file
22
server/node_modules/node-appwrite/dist/id.d.ts
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* Helper class to generate ID strings for resources.
|
||||
*/
|
||||
declare class ID {
|
||||
#private;
|
||||
/**
|
||||
* Uses the provided ID as the ID for the resource.
|
||||
*
|
||||
* @param {string} id
|
||||
* @returns {string}
|
||||
*/
|
||||
static custom(id: string): string;
|
||||
/**
|
||||
* Have Appwrite generate a unique ID for you.
|
||||
*
|
||||
* @param {number} padding. Default is 7.
|
||||
* @returns {string}
|
||||
*/
|
||||
static unique(padding?: number): string;
|
||||
}
|
||||
|
||||
export { ID };
|
||||
Reference in New Issue
Block a user