- CLI binary: bin/gniza -> bin/gniza4cp - Install path: /usr/local/gniza4cp/ - Config path: /etc/gniza4cp/ - Log path: /var/log/gniza4cp/ - WHM plugin: gniza4cp-whm/ - cPanel plugin: cpanel/gniza4cp/ - AdminBin: Gniza4cp::Restore - Perl modules: Gniza4cpWHM::*, Gniza4cpCPanel::* - DaisyUI theme: gniza4cp - All internal references, branding, paths updated - Git remote updated to gniza4cp repo
22 lines
456 B
TypeScript
22 lines
456 B
TypeScript
type Dict<T> = Record<string, T>;
|
|
type Arrayable<T> = T | T[];
|
|
type Default = Dict<any>;
|
|
|
|
declare function mri<T=Default>(args?: string[], options?: mri.Options): mri.Argv<T>;
|
|
|
|
declare namespace mri {
|
|
export interface Options {
|
|
boolean?: Arrayable<string>;
|
|
string?: Arrayable<string>;
|
|
alias?: Dict<Arrayable<string>>;
|
|
default?: Dict<any>;
|
|
unknown?(flag: string): void;
|
|
}
|
|
|
|
export type Argv<T=Default> = T & {
|
|
_: string[];
|
|
}
|
|
}
|
|
|
|
export = mri;
|