11 lines
375 B
TypeScript
11 lines
375 B
TypeScript
|
|
interface DiophantineVectorsProps {
|
||
|
|
complexity: number;
|
||
|
|
lightlanes?: boolean;
|
||
|
|
radius?: number;
|
||
|
|
distance?: number;
|
||
|
|
allSectors?: boolean;
|
||
|
|
cumulative?: boolean;
|
||
|
|
}
|
||
|
|
export declare function DiophantineVectors({ complexity, lightlanes, radius, distance, allSectors, cumulative }: DiophantineVectorsProps): import("react/jsx-runtime").JSX.Element;
|
||
|
|
export {};
|