mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-18 00:33:57 +00:00
5 lines
152 B
TypeScript
5 lines
152 B
TypeScript
import type { Snippet } from 'svelte';
|
|
|
|
export type WithChildren = { children: Snippet };
|
|
export type WithOptionalChildren = Partial<WithChildren>;
|