nodemod
Version:
A collection of node modules for The Really Project
10 lines • 406 B
TypeScript
import type { CalendarInitBase, DateTimeFormatter } from '../typings';
export interface GetWeekdaysInit extends OmitCalendarInitBase {
longWeekdayFormat: DateTimeFormatter;
narrowWeekdayFormat: DateTimeFormatter;
shortWeekLabel?: string;
weekLabel?: string;
}
declare type OmitCalendarInitBase = Omit<CalendarInitBase, 'weekNumberTemplate'>;
export {};
//# sourceMappingURL=typings.d.ts.map