mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 20:46:08 +00:00
13 lines
298 B
TypeScript
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;
|
|
}
|