Home
last modified time | relevance | path

Searched refs:getType (Results 1 – 17 of 17) sorted by relevance

/interface/sdk-js/api/
D@system.network.d.ts50 static getType(options?: { method in Network
D@ohos.i18n.d.ts1290 getType(char: string): string;
1476 static getType(char: string): string;
D@ohos.data.unifiedDataChannel.d.ts180 getType(): string;
D@ohos.security.cert.d.ts1682 getType(): string; method
1986 getType(): string;
D@ohos.web.webview.d.ts1477 getType(): WebMessageType;
2131 getType(): JsMessageType;
D@ohos.UiTest.d.ts396 getType(): Promise<string>;
2248 getType(): Promise<string>;
/interface/sdk-js/api/tag/
Dnfctech.d.ts589 getType(): tag.MifareClassicType; method
705 getType(): tag.MifareUltralightType; method
/interface/sdk-js/api/ability/
DdataAbilityHelper.d.ts98 getType(uri: string, callback: AsyncCallback<string>): void; method
109 getType(uri: string): Promise<string>; method
/interface/sdk-js/build-tools/dts_parser/src/coreImpl/parser/
DResultsProcess.ts259 newInfo.setType(propertyInfo.getType().join(' | '));
270 …ype(typeInfo ? typeInfo.replace(/^[\?]*[\(](.*)[\)]$/, '$1') : propertyInfo.getType().join(' | '));
362 newParam.setType(param.getType().join(' | '));
377 newParam.setType(param.getType().join(' | '));
544 typeAliasInfo.getType().map((type: string) => {
552 newInfo.setType(typeAliasInfo.getType().join(' | '));
DNodeProcessor.ts232 const paramType: string[] = params[i].getType();
/interface/sdk-js/api/@internal/ets/
Dlifecycle.d.ts608 getType?(uri: string, callback: AsyncCallback<string>): void; method
/interface/sdk-js/build-tools/dts_parser/src/typedef/parser/
DApiInfoDefination.ts430 getType(): string[] { method in PropertyInfo
490 getType(): string[] { method in TypeAliasInfo
609 getType(): string[] { method in ParamInfo
/interface/sdk-js/build-tools/dts_parser/src/coreImpl/diff/
DDiffProcessor.ts692 const oldParamType: string[] = oldApiInfo.getType();
693 const newParamType: string[] = newApiInfo.getType();
828 const olaPropertyType: string[] = oldApiInfo.getType();
829 const newPropertyType: string[] = newApiInfo.getType();
950 const olaTypeAliasType: string[] = oldApiInfo.getType();
951 const newTypeAliasType: string[] = newApiInfo.getType();
/interface/sdk-js/build-tools/dts_parser/src/coreImpl/checker/src/
Devent_method_check.ts133 const paramTypeName: string = firstParam.getType()[0].replace(/\'/g, '');
Dtag_value_check.ts417 paramApiType = paramApiInfos[paramIndex]?.getType();
/interface/sdk-js/build-tools/api_diff/src/
Dcollect_api.js198 getType(node);
201 function getType(node) { function
206 return ts.visitEachChild(node, getType, context);
/interface/sdk-js/build-tools/jsdoc_format_plugin/src/core/
DcoreImpls.ts762 let nodeSignature = `${AstNodeHelper.getType(node)}#`;
784 private static getType(node: ts.Node): string { method in AstNodeHelper