ngx-bootstrap-expanded-features
Version:
Too many new features for bootstrap made with javascript for better performance and more options without a large css file.
32 lines (31 loc) • 684 B
TypeScript
declare const LOG_TYPES: {
readonly log: "log";
readonly info: "info";
readonly trace: "trace";
readonly error: "error";
};
type TObjectValues<T> = T[keyof T];
export type TLOG_TYPE = TObjectValues<typeof LOG_TYPES>;
export type TBPS = {
bp: string;
value: string;
class2Create?: string;
};
export type TConsoleParser = {
type?: TLOG_TYPE;
thing: any;
style?: string;
line?: string | null;
stoper?: boolean;
};
export type TPseudo = {
mask: string;
real: string;
};
export type TAbreviationTraductor = {
abreviation: string;
abreviationRegExp: RegExp;
traduction: string;
traductionRegExp: RegExp;
};
export {};