Files
DefinitelyTyped/types/blobshape/index.d.ts
Oyedeji Oyewole 4a997a014d 🤖 Merge PR #64418 Added types for blobshape by @OyewoleOyedeji
* Added types for blobshape

* Update the tydpees for the parameters in blobshape

* Fixed tests & types for blobshape
2023-02-20 12:12:51 -08:00

19 lines
506 B
TypeScript

// Type definitions for blobshape 1.0
// Project: https://github.com/lokesh-coder/blobshape#readme
// Definitions by: OyewoleOyedeji <https://github.com/OyewoleOyedeji>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface BlobshapeParameters {
size?: number;
growth?: number;
edges?: number;
seed?: string | null;
}
declare function blobshape({ size, growth, edges, seed }?: BlobshapeParameters): {
path: string;
seedValue: number;
};
export = blobshape;