Skip to content

Instantly share code, notes, and snippets.

@hugoabernier
Last active April 22, 2018 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugoabernier/14941ed32f70723fec9e3ac734df0b13 to your computer and use it in GitHub Desktop.
Save hugoabernier/14941ed32f70723fec9e3ac734df0b13 to your computer and use it in GitHub Desktop.
import { ExtensionContext } from "@microsoft/sp-extension-base";
export interface IClassificationHeaderProps {
context: ExtensionContext;
}
export interface IClassificationHeaderState {
isLoading: boolean;
businessImpact: string;
}
export const ClassificationPropertyBag: string = "sc_x005f_BusinessImpact";
export const DefaultClassification: string = "LBI";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment