Skip to content

Commit 32c21cd

Browse files
🔂 Replaced JavaScript with TypeScript
Replaced JavaScript with TypeScript, as I think is more appropriate because when the project is initialized it is a TypeScript project with index.ts file
1 parent f8a56fe commit 32c21cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎powerapps-docs/developer/component-framework/manifest-schema-reference/includes/manifest-description.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Manifest is the metadata file that defines a component. It is an `XML` file that
2121
- The kind of data it can be configured, either a field or a data-set.
2222
- Any properties that can be configured in the application when the component is added.
2323
- A list of resource files that the component needs.
24-
- One of them must be a JavaScript web resource. This JavaScript must include a function that will instantiate an object. This implements an interface that exposes methods that are required for the component to work. This is called the component implementation library.
25-
- The name of a JavaScript function in the component implementation library that will return an object that applies the required component interface.
24+
- One of them must be a TypeScript web resource. This TypeScript must include a function that will instantiate an object. This implements an interface that exposes methods that are required for the component to work. This is called the component implementation library.
25+
- The name of a TypeScript function in the component implementation library that will return an object that applies the required component interface.
2626

2727
When the user configures a custom component in a canvas app or a model-driven app, the data in the manifest filters out the available components so that only the valid components for the context are available for configuration. The properties defined in the manifest for a component are rendered as configuration fields so that the user configuring the component can specify values. These property values are then available to the component function at run time.

0 commit comments

Comments
 (0)