From 59a0cba1f85662bd7648c622788383c5e7a8609c Mon Sep 17 00:00:00 2001 From: Kenan Date: Mon, 22 Jan 2024 16:54:57 +0000 Subject: [PATCH] delete index.d.ts --- .../victory-create-container/src/index.d.ts | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 packages/victory-create-container/src/index.d.ts diff --git a/packages/victory-create-container/src/index.d.ts b/packages/victory-create-container/src/index.d.ts deleted file mode 100644 index e39a797c6..000000000 --- a/packages/victory-create-container/src/index.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import * as React from "react"; - -export type ContainerType = - | "brush" - | "cursor" - | "selection" - | "voronoi" - | "zoom"; -export function createContainer( - c1: ContainerType, - c2: ContainerType, -): React.ComponentType; - -export function combineContainerMixins(mixins: any, Container: any): any; - -export const makeCreateContainerFunction: ( - mixinMap: any, - Container: any, -) => (behaviorA: any, behaviorB: any) => any;