mirror of
https://github.com/sern-handler/cli
synced 2026-06-28 02:32:20 +00:00
feat: publish command (#105)
Co-authored-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Co-authored-by: jacob <jacoobes@sern.dev>
This commit is contained in:
17
src/create-publish.d.ts
vendored
Normal file
17
src/create-publish.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user