video-wayfinder-types-developer
v1.0.2
Published
A shared type library for use across the Wayfinder video management system.
Downloads
5
Readme
Wayfinder
A shared type library for use across the Wayfinder video management system.
Installation
:warning: Since this is an internal package hosted on GitHub, there are a few extra steps you'll have to take before installing. Refer to GitHub's documentation on how to get set up.
Once you're authenticated and your project is configured to use GitHub packages, install the package as you would any other dev dependency:
npm install --save-dev @cbs-sports/video-wayfinder-types
Usage
import React from "react";
import { Event } from "@cbs-sports/video-wayfinder-types";
export default function Events() {
const [events, setEvents] = React.useState<Event[]>([]);
// ...
}