/** * Either a string or an array of strings */ export declare type StringOrList = string | string[]; /** * Either the boolean literal `true` or a string. * * Purpose: * - For use in validation functions that return true or an error string. */ export declare type StringOrTrue = true | string; //# sourceMappingURL=BasicTypes.d.ts.map