From 41e3d90e4134beb7ca5cf90c8309f8b17adc99e4 Mon Sep 17 00:00:00 2001 From: robonen Date: Sat, 30 Nov 2024 04:24:27 +0700 Subject: [PATCH] refactor(packages/stdlib): fix new lines for types --- packages/stdlib/src/types/ts/array.ts | 2 +- packages/stdlib/src/types/ts/function.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;