7 lines
241 B
TypeScript
7 lines
241 B
TypeScript
|
import * as React from 'react';
|
||
|
import type { ICustomizations } from './Customizations';
|
||
|
export interface ICustomizerContext {
|
||
|
customizations: ICustomizations;
|
||
|
}
|
||
|
export declare const CustomizerContext: React.Context<ICustomizerContext>;
|