Skip to content

Commit 8f7025c

Browse files
authored
Merge pull request MicrosoftDocs#1532 from Power-Maverick/patch-5
🔂 Replaced JavaScript with TypeScript
2 parents 5c127dc + 03d8c03 commit 8f7025c

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)