diff --git a/packages/stdlib/src/types/ts/array.ts b/packages/stdlib/src/types/ts/array.ts index 37d698d..d8c5237 100644 --- a/packages/stdlib/src/types/ts/array.ts +++ b/packages/stdlib/src/types/ts/array.ts @@ -1,4 +1,4 @@ /** * A type that can be either a single value or an array of values */ -export type Arrayable = T | T[]; \ No newline at end of file +export type Arrayable = T | T[]; diff --git a/packages/stdlib/src/types/ts/function.ts b/packages/stdlib/src/types/ts/function.ts index bb88f96..998fdc5 100644 --- a/packages/stdlib/src/types/ts/function.ts +++ b/packages/stdlib/src/types/ts/function.ts @@ -6,4 +6,4 @@ export type AnyFunction = (...args: any[]) => any; /** * Void function */ -export type VoidFunction = () => void; \ No newline at end of file +export type VoidFunction = () => void;