mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 02:31:34 +08:00
refactor(): minor updates for next stencil version (#20787)
This commit is contained in:
12
docs/core.d.ts
vendored
12
docs/core.d.ts
vendored
@ -27,8 +27,10 @@ export interface JsonDocsComponent {
|
||||
props: JsonDocsProp[];
|
||||
methods: JsonDocsMethod[];
|
||||
events: JsonDocsEvent[];
|
||||
listeners: JsonDocsListener[];
|
||||
styles: JsonDocsStyle[];
|
||||
slots: JsonDocsSlot[];
|
||||
parts: JsonDocsPart[];
|
||||
dependents: string[];
|
||||
dependencies: string[];
|
||||
dependencyGraph: JsonDocsDependencyGraph;
|
||||
@ -95,10 +97,20 @@ export interface JsonDocsStyle {
|
||||
docs: string;
|
||||
annotation: string;
|
||||
}
|
||||
export interface JsonDocsListener {
|
||||
event: string;
|
||||
target?: string;
|
||||
capture: boolean;
|
||||
passive: boolean;
|
||||
}
|
||||
export interface JsonDocsSlot {
|
||||
name: string;
|
||||
docs: string;
|
||||
}
|
||||
export interface JsonDocsPart {
|
||||
name: string;
|
||||
docs: string;
|
||||
}
|
||||
export interface StyleDoc {
|
||||
name: string;
|
||||
docs: string;
|
||||
|
Reference in New Issue
Block a user