FIN INIT
This commit is contained in:
1
node_modules/chart.js/dist/plugins/plugin.filler/filler.drawing.d.ts
generated
vendored
Normal file
1
node_modules/chart.js/dist/plugins/plugin.filler/filler.drawing.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export function _drawfill(ctx: any, source: any, area: any): void;
|
||||
14
node_modules/chart.js/dist/plugins/plugin.filler/filler.helper.d.ts
generated
vendored
Normal file
14
node_modules/chart.js/dist/plugins/plugin.filler/filler.helper.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* @param {PointElement[] | { x: number; y: number; }} boundary
|
||||
* @param {LineElement} line
|
||||
* @return {LineElement?}
|
||||
*/
|
||||
export function _createBoundaryLine(boundary: PointElement[] | {
|
||||
x: number;
|
||||
y: number;
|
||||
}, line: LineElement): LineElement | null;
|
||||
export function _shouldApplyFill(source: any): boolean;
|
||||
export type Chart = import('../../core/core.controller.js').default;
|
||||
export type Scale = import('../../core/core.scale.js').default;
|
||||
export type PointElement = import('../../elements/element.point.js').default;
|
||||
import { LineElement } from "../../elements/index.js";
|
||||
30
node_modules/chart.js/dist/plugins/plugin.filler/filler.options.d.ts
generated
vendored
Normal file
30
node_modules/chart.js/dist/plugins/plugin.filler/filler.options.d.ts
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* @typedef { import('../../core/core.scale.js').default } Scale
|
||||
* @typedef { import('../../elements/element.line.js').default } LineElement
|
||||
* @typedef { import('../../types/index.js').FillTarget } FillTarget
|
||||
* @typedef { import('../../types/index.js').ComplexFillTarget } ComplexFillTarget
|
||||
*/
|
||||
export function _resolveTarget(sources: any, index: any, propagate: any): any;
|
||||
/**
|
||||
* @param {LineElement} line
|
||||
* @param {number} index
|
||||
* @param {number} count
|
||||
*/
|
||||
export function _decodeFill(line: LineElement, index: number, count: number): any;
|
||||
/**
|
||||
* @param {FillTarget | ComplexFillTarget} fill
|
||||
* @param {Scale} scale
|
||||
* @returns {number | null}
|
||||
*/
|
||||
export function _getTargetPixel(fill: FillTarget | ComplexFillTarget, scale: Scale): number | null;
|
||||
/**
|
||||
* @param {FillTarget | ComplexFillTarget} fill
|
||||
* @param {Scale} scale
|
||||
* @param {number} startValue
|
||||
* @returns {number | undefined}
|
||||
*/
|
||||
export function _getTargetValue(fill: FillTarget | ComplexFillTarget, scale: Scale, startValue: number): number | undefined;
|
||||
export type Scale = import('../../core/core.scale.js').default;
|
||||
export type LineElement = import('../../elements/element.line.js').default;
|
||||
export type FillTarget = import('../../types/index.js').FillTarget;
|
||||
export type ComplexFillTarget = import('../../types/index.js').ComplexFillTarget;
|
||||
36
node_modules/chart.js/dist/plugins/plugin.filler/filler.segment.d.ts
generated
vendored
Normal file
36
node_modules/chart.js/dist/plugins/plugin.filler/filler.segment.d.ts
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
export function _segments(line: any, target: any, property: any): ({
|
||||
source: any;
|
||||
target: {
|
||||
property: any;
|
||||
start: any;
|
||||
end: any;
|
||||
};
|
||||
start: any;
|
||||
end: any;
|
||||
} | {
|
||||
source: {
|
||||
start: number;
|
||||
end: number;
|
||||
loop: boolean;
|
||||
style?: any;
|
||||
};
|
||||
target: {
|
||||
start: number;
|
||||
end: number;
|
||||
loop: boolean;
|
||||
style?: any;
|
||||
};
|
||||
start: {
|
||||
[x: number]: any;
|
||||
};
|
||||
end: {
|
||||
[x: number]: any;
|
||||
};
|
||||
})[];
|
||||
export function _getBounds(property: any, first: any, last: any, loop: any): {
|
||||
property: any;
|
||||
start: any;
|
||||
end: any;
|
||||
};
|
||||
export function _pointsFromSegments(boundary: any, line: any): any[];
|
||||
export function _findSegmentEnd(start: any, end: any, points: any): any;
|
||||
9
node_modules/chart.js/dist/plugins/plugin.filler/filler.target.d.ts
generated
vendored
Normal file
9
node_modules/chart.js/dist/plugins/plugin.filler/filler.target.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* @typedef { import('../../core/core.controller.js').default } Chart
|
||||
* @typedef { import('../../core/core.scale.js').default } Scale
|
||||
* @typedef { import('../../elements/element.point.js').default } PointElement
|
||||
*/
|
||||
export function _getTarget(source: any): any;
|
||||
export type Chart = import('../../core/core.controller.js').default;
|
||||
export type Scale = import('../../core/core.scale.js').default;
|
||||
export type PointElement = import('../../elements/element.point.js').default;
|
||||
14
node_modules/chart.js/dist/plugins/plugin.filler/filler.target.stack.d.ts
generated
vendored
Normal file
14
node_modules/chart.js/dist/plugins/plugin.filler/filler.target.stack.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* @param {{ chart: Chart; scale: Scale; index: number; line: LineElement; }} source
|
||||
* @return {LineElement}
|
||||
*/
|
||||
export function _buildStackLine(source: {
|
||||
chart: Chart;
|
||||
scale: Scale;
|
||||
index: number;
|
||||
line: LineElement;
|
||||
}): LineElement;
|
||||
export type Chart = import('../../core/core.controller.js').default;
|
||||
export type Scale = import('../../core/core.scale.js').default;
|
||||
export type PointElement = import('../../elements/element.point.js').default;
|
||||
import { LineElement } from "../../elements/index.js";
|
||||
12
node_modules/chart.js/dist/plugins/plugin.filler/index.d.ts
generated
vendored
Normal file
12
node_modules/chart.js/dist/plugins/plugin.filler/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
declare namespace _default {
|
||||
const id: string;
|
||||
function afterDatasetsUpdate(chart: any, _args: any, options: any): void;
|
||||
function beforeDraw(chart: any, _args: any, options: any): void;
|
||||
function beforeDatasetsDraw(chart: any, _args: any, options: any): void;
|
||||
function beforeDatasetDraw(chart: any, args: any, options: any): void;
|
||||
namespace defaults {
|
||||
const propagate: boolean;
|
||||
const drawTime: string;
|
||||
}
|
||||
}
|
||||
export default _default;
|
||||
12
node_modules/chart.js/dist/plugins/plugin.filler/simpleArc.d.ts
generated
vendored
Normal file
12
node_modules/chart.js/dist/plugins/plugin.filler/simpleArc.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
export class simpleArc {
|
||||
constructor(opts: any);
|
||||
x: any;
|
||||
y: any;
|
||||
radius: any;
|
||||
pathSegment(ctx: any, bounds: any, opts: any): boolean;
|
||||
interpolate(point: any): {
|
||||
x: any;
|
||||
y: any;
|
||||
angle: any;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user