feat: apply success stubs to landing content (#33)

This commit is contained in:
RustamRu
2024-11-17 18:07:35 +03:00
parent 409473413a
commit 407da721af
13 changed files with 109 additions and 63 deletions

View File

@@ -1,3 +1,11 @@
/**
* @example type Output = ArrElement<['a', 'b', 'c']>;
* // "a" | "b" | "c"
*/
export type ArrElement<ArrType> = ArrType extends readonly (infer ElementType)[]
? ElementType
: never;
/**
* @example type Output = Split<'a.b1' | 'a.b2', '.'>;
* // ["a", "b1"] | ["a", "b2"]