1/** 2 * Type representing options for the `check-packages` command. 3 */ 4export type ActionOptions = { 5 since: string; 6 all: boolean; 7 build: boolean; 8 test: boolean; 9 lint: boolean; 10 fixLint: boolean; 11 uniformityCheck: boolean; 12 packageNames: string[]; 13 isPlugin?: boolean; 14}; 15