@bokeh/bokehjs
Version:
Interactive, novel data visualization
31 lines • 1.26 kB
TypeScript
import { WebDataSource } from "./web_data_source";
import type { Dict } from "../../core/types";
import type { UpdateMode } from "../../core/enums";
import { HTTPMethod } from "../../core/enums";
import type * as p from "../../core/properties";
export declare namespace AjaxDataSource {
type Attrs = p.AttrsOf<Props>;
type Props = WebDataSource.Props & {
polling_interval: p.Property<number | null>;
content_type: p.Property<string>;
http_headers: p.Property<Dict<string>>;
method: p.Property<HTTPMethod>;
if_modified: p.Property<boolean>;
};
}
export interface AjaxDataSource extends AjaxDataSource.Attrs {
}
export declare class AjaxDataSource extends WebDataSource {
properties: AjaxDataSource.Props;
constructor(attrs?: Partial<AjaxDataSource.Attrs>);
protected interval?: number;
protected initialized?: boolean;
protected last_fetch_time?: Date;
destroy(): void;
setup(): void;
get_data(mode: UpdateMode, max_size?: number | null, if_modified?: boolean): void;
prepare_request(): XMLHttpRequest;
do_load(xhr: XMLHttpRequest, mode: UpdateMode, max_size?: number): Promise<void>;
do_error(xhr: XMLHttpRequest): void;
}
//# sourceMappingURL=ajax_data_source.d.ts.map