ngx-mat-lib
Version:
A bunch of utilities and components to use in your Angular 7+ apps!
31 lines (30 loc) • 926 B
TypeScript
import { XmatGenericObject, XmatConstantsLabels } from "../models/index";
export declare const XMAT_CONSTANT_LABELS: XmatConstantsLabels;
export declare class XmatConstantsService {
/**
* PUBLIC STUFF
*/
readonly mocksEndings: {
ok: string;
ko: string;
};
readonly mocksBaseUrl: string;
restBaseUrl: string;
readonly dialogOptions: any;
readonly ds: string;
readonly fileNameSpace: string;
labels: XmatConstantsLabels;
readonly paramsPlaceholder: string;
readonly queryUrlParam: string;
readonly regExps: XmatGenericObject<string>;
readonly routeParams: string;
constructor();
/**
* PUBLIC FUNCTIONS
*/
isGenericObject(entity: any): boolean;
isStrictlyObject(entity: any): boolean;
isObjectEmpty(obj: object): boolean;
noop(): void;
removeTrailingSlash(target: string): string;
}