ngx-bootstrap
Version:
Native Angular Bootstrap Components
15 lines (14 loc) • 435 B
TypeScript
import { EventEmitter } from '@angular/core';
export interface BsCalendarOptions {
bsRole: string;
offset?: number;
}
export declare class BsCalendarOptionsClass implements BsCalendarOptions {
bsRole: string;
offset: number;
onUpdate: EventEmitter<BsCalendarOptionsClass>;
private _offset;
update(value: BsCalendarOptions): void;
readonly isLeft: boolean;
readonly isRight: boolean;
}