UNPKG

@oslokommune/punkt-elements

Version:

Komponentbiblioteket til Punkt, et designsystem laget av Oslo Origo

17 lines (16 loc) 516 B
import { BaseTestConfig } from '../../tests/test-framework'; export interface CalendarTestConfig extends BaseTestConfig { withcontrols?: boolean; weeknumbers?: boolean; multiple?: boolean; range?: boolean; earliest?: string; latest?: string; currentmonth?: string; excludedates?: string; excludeweekdays?: string; } export declare const createCalendarTest: (config?: CalendarTestConfig) => Promise<{ container: HTMLElement; calendar: import('./calendar').PktCalendar; }>;