ngx-angora-css
Version:
Angora CSS is a library that provides a set of CSS classes to help you build modern web applications. It is based on the [Boostrap Expanded Features Library](https://github.com/LynxPardelle/bootstrap-expanded-features) and the [Bootstrap](https://getboots
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 {};