interface Root {
    css: null | StyleSheet;
    end: number;
    fragment: Fragment;
    instance: null | Script;
    module: null | Script;
    options: null | SvelteOptions;
    start: number;
    type: "Root";
}

Hierarchy (View Summary)

Properties

css: null | StyleSheet

The parsed <style> element, if exists

end: number
fragment: Fragment
instance: null | Script

The parsed <script> element, if exists

module: null | Script

The parsed <script module> element, if exists

options: null | SvelteOptions

Inline options provided by <svelte:options> — these override options passed to compile(...)

start: number
type: "Root"