mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 01:52:19 +08:00
feat(angular): angular 9 support (#19515)
* init ivy support * chore(): angular prerelease * chore: update * updates * angular 8 deps * chore(angular): update sync script * updates * chore(): remove console log * chore(): updates * chore(): update release script * fix(): remove comments * fix(): remove test version * fix(): failing angular test * fix(): failing angular tests * fix(): update ci steps * fix(): fix sync script * chore(): refactor angular proxies * chore(): updates * chore(): updates * chore(): lint * chore(): updates * chore(ssr): check for window * chore(): fix virtual scroll angular tests * chore(): lint * chore(): add server to link * chore(scripts): update release script * chore(): bump version check * style(scripts): spacing
This commit is contained in:
109
docs/core.d.ts
vendored
Normal file
109
docs/core.d.ts
vendored
Normal file
@ -0,0 +1,109 @@
|
||||
|
||||
/**
|
||||
* This is an autogenerated file created by the Stencil compiler.
|
||||
* DO NOT MODIFY IT MANUALLY
|
||||
*/
|
||||
export interface JsonDocs {
|
||||
components: JsonDocsComponent[];
|
||||
timestamp: string;
|
||||
compiler: {
|
||||
name: string;
|
||||
version: string;
|
||||
typescriptVersion: string;
|
||||
};
|
||||
}
|
||||
export interface JsonDocsComponent {
|
||||
dirPath?: string;
|
||||
fileName?: string;
|
||||
filePath?: string;
|
||||
readmePath?: string;
|
||||
usagesDir?: string;
|
||||
encapsulation: 'shadow' | 'scoped' | 'none';
|
||||
tag: string;
|
||||
readme: string;
|
||||
docs: string;
|
||||
docsTags: JsonDocsTag[];
|
||||
usage: JsonDocsUsage;
|
||||
props: JsonDocsProp[];
|
||||
methods: JsonDocsMethod[];
|
||||
events: JsonDocsEvent[];
|
||||
styles: JsonDocsStyle[];
|
||||
slots: JsonDocsSlot[];
|
||||
dependents: string[];
|
||||
dependencies: string[];
|
||||
dependencyGraph: JsonDocsDependencyGraph;
|
||||
deprecation?: string;
|
||||
}
|
||||
export interface JsonDocsDependencyGraph {
|
||||
[tagName: string]: string[];
|
||||
}
|
||||
export interface JsonDocsTag {
|
||||
name: string;
|
||||
text?: string;
|
||||
}
|
||||
export interface JsonDocsValue {
|
||||
value?: string;
|
||||
type: string;
|
||||
}
|
||||
export interface JsonDocsUsage {
|
||||
[key: string]: string;
|
||||
}
|
||||
export interface JsonDocsProp {
|
||||
name: string;
|
||||
type: string;
|
||||
mutable: boolean;
|
||||
attr?: string;
|
||||
reflectToAttr: boolean;
|
||||
docs: string;
|
||||
docsTags: JsonDocsTag[];
|
||||
default: string;
|
||||
deprecation?: string;
|
||||
values: JsonDocsValue[];
|
||||
optional: boolean;
|
||||
required: boolean;
|
||||
}
|
||||
export interface JsonDocsMethod {
|
||||
name: string;
|
||||
docs: string;
|
||||
docsTags: JsonDocsTag[];
|
||||
deprecation?: string;
|
||||
signature: string;
|
||||
returns: JsonDocsMethodReturn;
|
||||
parameters: JsonDocMethodParameter[];
|
||||
}
|
||||
export interface JsonDocsMethodReturn {
|
||||
type: string;
|
||||
docs: string;
|
||||
}
|
||||
export interface JsonDocMethodParameter {
|
||||
name: string;
|
||||
type: string;
|
||||
docs: string;
|
||||
}
|
||||
export interface JsonDocsEvent {
|
||||
event: string;
|
||||
bubbles: boolean;
|
||||
cancelable: boolean;
|
||||
composed: boolean;
|
||||
docs: string;
|
||||
docsTags: JsonDocsTag[];
|
||||
deprecation?: string;
|
||||
detail: string;
|
||||
}
|
||||
export interface JsonDocsStyle {
|
||||
name: string;
|
||||
docs: string;
|
||||
annotation: string;
|
||||
}
|
||||
export interface JsonDocsSlot {
|
||||
name: string;
|
||||
docs: string;
|
||||
}
|
||||
export interface StyleDoc {
|
||||
name: string;
|
||||
docs: string;
|
||||
annotation: 'prop';
|
||||
}
|
||||
|
||||
declare const _default: JsonDocs;
|
||||
export default _default;
|
Reference in New Issue
Block a user