1.0.2 • Published 5 years ago
video-wayfinder-types-developer
Licence
UNLICENSED
Version
1.0.2
Deps
0
Size
15 kB
Vulns
0
Weekly
0
Wayfinder
A shared type library for use across the Wayfinder video management system.
Installation
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[]>([]);
// ...
}