2022-06-22 19:53:39 -05:00

12 lines
298 B
TypeScript

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