default: {
    style: {
        init: ((parent, text) => any);
        methods: {
            setTextContent: ((el, text) => any);
        };
    };
} = ...

Rabbit Ear (c) Kraft

Type declaration

  • style: {
        init: ((parent, text) => any);
        methods: {
            setTextContent: ((el, text) => any);
        };
    }
    • init: ((parent, text) => any)
        • (parent, text): any
        • Parameters

          • parent: any
          • text: any

          Returns any

    • methods: {
          setTextContent: ((el, text) => any);
      }
      • setTextContent: ((el, text) => any)
          • (el, text): any
          • Parameters

            • el: any
            • text: any

            Returns any