@shopify/app-bridge-ui-types
v0.3.3
Published
Type definitions for App Bridge UI.
Downloads
7,227
Keywords
Readme
@shopify/app-bridge-ui-types
Type definitions for App Bridge UI.
Installation
Add the types package as a dev dependency:
npm i -D @shopify/app-bridge-ui-typesUsage
Since App Bridge UI is not imported directly, you need to add the types to your TypeScript configuration in one of the following ways:
Method 1: Add to tsconfig.json
{
"compilerOptions": {
"types": ["@shopify/app-bridge-ui-types"]
}
}Method 2: Add as a triple-slash reference
Add the following line at the top of your TypeScript files where you need the types:
/// <reference types="@shopify/app-bridge-ui-types" />