From bb3947b1394bb3aba9ea81edc298cbc30b1cc517 Mon Sep 17 00:00:00 2001 From: Samuel Janda Date: Sun, 10 Mar 2024 10:58:04 +1100 Subject: [PATCH] Forgotten to commit type file --- types/Layer/Layer.svelte.d.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/types/Layer/Layer.svelte.d.ts b/types/Layer/Layer.svelte.d.ts index 90081477..7966ec54 100644 --- a/types/Layer/Layer.svelte.d.ts +++ b/types/Layer/Layer.svelte.d.ts @@ -11,19 +11,13 @@ export interface LayerProps { * Specify the HTML element to render. If none is specified, a `div` is rendered. * @default "div" */ - as?: typeof import("svelte").SvelteComponent; + as?: string; /** * Specify the Layer HTML element props * @default {} */ layerProps?: import("svelte/elements").HTMLElementAttributes; - - /** - * Set an id for the Layer component - * @default "ccs-" + Math.random().toString(36) - */ - id?: string; } export default class Layer extends SvelteComponentTyped<