theme-lib
Version:
This is a simple example Angular Library published to npm.
20 lines (19 loc) • 539 B
TypeScript
export interface NbMediaBreakpoint {
name: string;
width: number;
}
export declare const DEFAULT_MEDIA_BREAKPOINTS: {
name: string;
width: number;
}[];
export declare class NbMediaBreakpointsService {
private breakpoints;
private breakpointsMap;
constructor(breakpoints: any);
getByWidth(width: number): NbMediaBreakpoint;
getByName(name: string): NbMediaBreakpoint;
getBreakpoints(): NbMediaBreakpoint[];
getBreakpointsMap(): {
[breakpoint: string]: number;
};
}