tauri/cli/tauri.js/api-src/cli.ts

36 lines
640 B
TypeScript
Raw Normal View History

import { promisified } from './tauri'
export interface ArgMatch {
/**
* string if takes value
* boolean if flag
* string[] or null if takes multiple values
*/
value: string | boolean | string[] | null
/**
* number of occurrences
*/
occurrences: number
}
export interface SubcommandMatch {
name: string
matches: CliMatches
}
export interface CliMatches {
args: { [name: string]: ArgMatch }
subcommand: SubcommandMatch | null
}
/**
* gets the CLI matches
*/
async function getMatches(): Promise<CliMatches> {
return await promisified<CliMatches>({
cmd: 'cliMatches'
})
}
export { getMatches }