mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 19:21:33 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
34 lines
1.5 KiB
TypeScript
Executable File
34 lines
1.5 KiB
TypeScript
Executable File
// Generated by dts-bundle v0.7.3-fork.1
|
|
// Dependencies for this module:
|
|
// ../../../../../@fullcalendar/core
|
|
|
|
declare module '@fullcalendar/list' {
|
|
import ListView from '@fullcalendar/list/ListView';
|
|
export { ListView };
|
|
const _default: import("@fullcalendar/core").PluginDef;
|
|
export default _default;
|
|
}
|
|
|
|
declare module '@fullcalendar/list/ListView' {
|
|
import { View, ViewProps, ScrollComponent, DateMarker, DateRange, DateProfileGenerator, ComponentContext, ViewSpec, EventUiHash, EventRenderRange, EventStore, Seg } from '@fullcalendar/core';
|
|
export { ListView as default, ListView };
|
|
class ListView extends View {
|
|
scroller: ScrollComponent;
|
|
contentEl: HTMLElement;
|
|
dayDates: DateMarker[];
|
|
constructor(context: ComponentContext, viewSpec: ViewSpec, dateProfileGenerator: DateProfileGenerator, parentEl: HTMLElement);
|
|
render(props: ViewProps): void;
|
|
destroy(): void;
|
|
updateSize(isResize: any, viewHeight: any, isAuto: any): void;
|
|
computeScrollerHeight(viewHeight: any): number;
|
|
_eventStoreToSegs(eventStore: EventStore, eventUiBases: EventUiHash, dayRanges: DateRange[]): Seg[];
|
|
eventRangesToSegs(eventRanges: EventRenderRange[], dayRanges: DateRange[]): any[];
|
|
eventRangeToSegs(eventRange: EventRenderRange, dayRanges: DateRange[]): any[];
|
|
renderEmptyMessage(): void;
|
|
renderSegList(allSegs: any): void;
|
|
groupSegsByDay(segs: any): any[];
|
|
buildDayHeaderRow(dayDate: any): HTMLTableRowElement;
|
|
}
|
|
}
|
|
|