initial commit
This commit is contained in:
15
src/types/Appwrite.type.ts
Normal file
15
src/types/Appwrite.type.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Models } from "node-appwrite";
|
||||
|
||||
export type ShareDocument = {
|
||||
securityID: string;
|
||||
createdAt: number;
|
||||
expiresAt: number;
|
||||
visitorCount: number;
|
||||
enabled: boolean;
|
||||
} & Models.Document;
|
||||
|
||||
|
||||
export type SecurityDocument = {
|
||||
password: string;
|
||||
maxVisitors: number;
|
||||
} & Models.Document;
|
||||
Reference in New Issue
Block a user