@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
22 lines (21 loc) • 765 B
TypeScript
import Vue from "vue";
import { IWebComponentInstance } from "../..";
import { SharePointUserService } from "../../sp";
import { WelcomeLocalization } from "./loc/localize";
import { OmniaContext } from "../../contexts";
export declare class Welcome extends Vue implements IWebComponentInstance {
static alreadyRenderedOneInstance: boolean;
userService: SharePointUserService;
omniaContext: OmniaContext;
loc: WelcomeLocalization.locInterface;
localstorageKey: string;
validToRender: boolean;
transparentWelcomeMessage: boolean;
transparentSettingUpMessage: boolean;
showError: boolean;
showMessageCompletely: Promise<void>;
mounted(): void;
init(): void;
done(): void;
render(): VueTsxSupport.JSX.Element;
}