Yuzu b15666f20e
chore: use single quotes (#68)
* chore: single quote
2022-07-18 18:25:23 +00: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;
}