add web-link activation modifier

This commit is contained in:
Vassiliy Shvetsov 2020-05-06 12:04:14 -07:00 committed by Benjamin Staneck
parent 7d571cfdc2
commit ffd4eb46e3
8 changed files with 33 additions and 3 deletions

3
lib/hyper.d.ts vendored
View file

@ -105,6 +105,7 @@ export type uiState = {
updateReleaseUrl: string | null;
updateVersion: string | null;
webGLRenderer: boolean;
webLinksActivationKey: string;
};
export type session = {
@ -308,6 +309,7 @@ export type TermGroupOwnProps = {
| 'toggleSearch'
| 'uiFontFamily'
| 'webGLRenderer'
| 'webLinksActivationKey'
>;
import {TermGroupConnectedProps} from './components/term-group';
@ -368,6 +370,7 @@ export type TermProps = {
uiFontFamily: string;
url: string | null;
webGLRenderer: boolean;
webLinksActivationKey: string;
} & extensionProps & {ref_?: any};
export type Assignable<T, U> = {[k in keyof U]: k extends keyof T ? T[k] : U[k]} & Partial<T>;