svelte-ast-print - v1.0.0
    Preparing search index...
    interface Root {
        css: null | StyleSheet;
        end?: number;
        fragment: Fragment;
        instance: null | Script;
        module: null | Script;
        options: null | SvelteOptions;
        start?: number;
        type: "Root";
    }

    Hierarchy

    • BaseNode
      • Root
    Index

    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"