Skip to content

Commit f6997a4

Browse files
committed
Standardize on tabs in ts files
1 parent fdc7adf commit f6997a4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

types/index.esm.d.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -527,8 +527,8 @@ export class DatasetController<TElement extends Element = Element, TDatasetEleme
527527
protected getMaxOverflow(): boolean | number;
528528
draw(): void;
529529
reset(): void;
530-
getDataset(): ChartDataset;
531-
getDataKey(): string;
530+
getDataset(): ChartDataset;
531+
getDataKey(): string;
532532
getMeta(): ChartMeta<TElement, TDatasetElement>;
533533
getScaleForId(scaleID: string): Scale | undefined;
534534
configure(): void;
@@ -775,7 +775,7 @@ export interface Plugin<O = {}> extends ExtendedPlugin {
775775
* @param {object} options - The plugin options.
776776
* @returns {boolean} `false` to cancel the chart update.
777777
*/
778-
beforeUpdate?(chart: Chart, args: { mode: UpdateMode }, options: O): boolean | void;
778+
beforeUpdate?(chart: Chart, args: { mode: UpdateMode }, options: O): boolean | void;
779779
/**
780780
* @desc Called after `chart` has been updated and before rendering. Note that this
781781
* hook will not be called if the chart update has been previously cancelled.
@@ -784,15 +784,15 @@ export interface Plugin<O = {}> extends ExtendedPlugin {
784784
* @param {UpdateMode} args.mode - The update mode
785785
* @param {object} options - The plugin options.
786786
*/
787-
afterUpdate?(chart: Chart, args: { mode: UpdateMode }, options: O): void;
788-
/**
789-
* @desc Called during the update process, before any chart elements have been created.
790-
* This can be used for data decimation by changing the data array inside a dataset.
787+
afterUpdate?(chart: Chart, args: { mode: UpdateMode }, options: O): void;
788+
/**
789+
* @desc Called during the update process, before any chart elements have been created.
790+
* This can be used for data decimation by changing the data array inside a dataset.
791791
* @param {Chart} chart - The chart instance.
792792
* @param {object} args - The call arguments.
793793
* @param {object} options - The plugin options.
794-
*/
795-
beforeElementsUpdate?(chart: Chart, args: {}, options: O): void;
794+
*/
795+
beforeElementsUpdate?(chart: Chart, args: {}, options: O): void;
796796
/**
797797
* @desc Called during chart reset
798798
* @param {Chart} chart - The chart instance.

0 commit comments

Comments
 (0)