mirror of
https://github.com/sern-handler/cli
synced 2026-06-27 18:22:20 +00:00
Co-authored-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Co-authored-by: jacob <jacoobes@sern.dev>
18 lines
331 B
TypeScript
18 lines
331 B
TypeScript
export interface PublishableData {
|
|
name: string;
|
|
type: number;
|
|
description: string;
|
|
absPath: string;
|
|
options: Typeable[];
|
|
}
|
|
export interface Typeable {
|
|
type: number;
|
|
}
|
|
export interface Config {
|
|
guildIds?: string[];
|
|
}
|
|
export interface PublishableModule {
|
|
data: PublishableData;
|
|
config: Config;
|
|
}
|