12345678910111213141516171819202122232425262728293031323334353637 |
- 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
- }
|