13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
import type { CardFullscreenAPI } from '../types';
|
|
import type { FullscreenHandler } from './types';
|
|
|
|
export class FullscreenProviderBase {
|
|
protected _api: CardFullscreenAPI;
|
|
protected _handler: FullscreenHandler;
|
|
|
|
constructor(api: CardFullscreenAPI, handler: FullscreenHandler) {
|
|
this._api = api;
|
|
this._handler = handler;
|
|
}
|
|
}
|