Export types

Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Richie Bendall 2020-07-20 11:14:56 +12:00
parent 1507a6db56
commit d2a5e19034
No known key found for this signature in database
GPG key ID: 94AE1ACB662A2A6D
2 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,8 @@
import {Class, TypedArray, ObservableLike, Primitive} from './types';
export {Class, TypedArray, ObservableLike, Primitive};
const typedArrayTypeNames = [
'Int8Array',
'Uint8Array',

View file

@ -1,3 +1,5 @@
// Extracted from https://github.com/sindresorhus/type-fest/blob/78019f42ea888b0cdceb41a4a78163868de57555/index.d.ts
/**
Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive).
*/