2022-07-08 01:33:29 -05:00

13 lines
298 B
TypeScript

import type { Snowflake } from "../Snowflake.ts";
import type { Session } from "../Session.ts";
/**
* Represents a Discord data model
*/
export interface Model {
/** id of the model */
id: Snowflake;
/** reference to the client that instantiated the model */
session: Session;
}