first commit
This commit is contained in:
23
cli/types.ts
Normal file
23
cli/types.ts
Normal file
@ -0,0 +1,23 @@
|
||||
export interface CLIOptions {
|
||||
name: string
|
||||
description: string
|
||||
setup: DocsOptions
|
||||
}
|
||||
|
||||
export interface DocsOptions {
|
||||
dev?: boolean
|
||||
defaults?: {
|
||||
// Module name
|
||||
name?: string
|
||||
// Module description
|
||||
description?: string
|
||||
// Docs directory
|
||||
dir?: string
|
||||
// Website URL
|
||||
url?: string
|
||||
// GitHub repository
|
||||
github?: string
|
||||
// GitHub branch
|
||||
branch?: string
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user