Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Mandarine.MandarineCore.NativeComponentsProperties

import type { Mandarine } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/main-core/Mandarine.ns.ts"; 

const { NativeComponentsProperties } = Mandarine.MandarineCore;

Properties used by the native components registry. This interface provides mandarine with the management of native components in the core.

interface NativeComponentsProperties {
children: Array<{
methodName: string;
type: any;
isReadonly?: boolean;
providers?: Array<any>;
onOverride?: (output: any) => void;
}
>
;
onOverride?: (output: any) => void;
type: any;
}

§Properties

§
children: Array<{
methodName: string;
type: any;
isReadonly?: boolean;
providers?: Array<any>;
onOverride?: (output: any) => void;
}
>
[src]
§
onOverride?: (output: any) => void
[src]
§
type: any
[src]