Shadis/src/FileView/views/FVSidebar/FVSidebar.props.ts

20 lines
465 B
TypeScript
Executable File

import { ManagedClasses } from "@microsoft/fast-jss-manager-react";
/**
* Class name contract for the component
*/
export interface FVSidebarClassNameContract {
fv_sidebar: string;
fv_sidebar_button: string;
fv_sidebar_container: string;
fv_sidebar_content?: string;
fv_sidebar_footer?: string;
}
/**
* Props for the component
*/
export interface FVSidebarProps extends ManagedClasses<FVSidebarClassNameContract> {
fileData: Window["fileData"];
}