9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
|
import { UUID } from "https://deno.land/x/mongo@v0.31.2/mod.ts";
|
||
|
|
||
|
export default interface User {
|
||
|
_id: string;
|
||
|
username: string;
|
||
|
password: string;
|
||
|
images: UUID[];
|
||
|
}
|