@open-urbis/types
v1.0.0
Published
Shared TypeScript types for Urbis Workflows applications.
Readme
Urbis Types
Shared TypeScript types for Urbis applications.
Installation
npm install @openurbis/types
# or
yarn add @openurbis/typesUsage
import { Field, FieldType } from '@openurbis/types';
// Use the types in your code
const field: Field = {
type: FieldType.Input,
key: 'myField',
options: {
// ... field options
}
};Development
- Install dependencies:
npm install
# or
yarn- Build the package:
npm run build
# or
yarn build