2022-06-27 22:01:41 -05:00

13 lines
311 B
TypeScript

import type { Snowflake } from "../util/Snowflake.ts";
import type { Session } from "../session/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;
}