ngx-bootstrap-fix-datepicker
Version:
Native Angular Bootstrap Components
10 lines (9 loc) • 322 B
TypeScript
import { TimeUnit } from 'ngx-bootstrap/chronos';
export declare type CreateMatrixCb<T> = (date: Date) => T;
export interface MatrixOptions {
height: number;
width: number;
initialDate: Date;
shift: TimeUnit;
}
export declare function createMatrix<T>(options: MatrixOptions, fn: CreateMatrixCb<T>): T[][];