Skip to main content
Module

x/natico/discordeno_deps.ts>Split

A powerful and customizable framework for Discordeno
Latest
type alias Split
import { type Split } from "https://deno.land/x/natico@4.0.0-pre.4/discordeno_deps.ts";

Type Parameters

S extends string
D extends string
definition: string extends S ? string[] : S extends "" ? [] : S extends `${infer T}${D}${infer U}` ? [T, ...Split<U, D>] : [S]