@flatfile/angular-sdk
Version:
Flatfile SDK for Angular
26 lines (25 loc) • 1.07 kB
TypeScript
import { OnInit } from '@angular/core';
import { type ISpace } from '@flatfile/embedded-utils';
import { SpaceFramePropsType } from './space-frame/spaceFrame.component';
import { SpaceService } from './space.service';
import * as i0 from "@angular/core";
export declare class Space implements OnInit {
private readonly spaceService;
spaceProps: ISpace;
openDirectly: boolean;
config?: {
resetOnClose: boolean;
};
readonly title = "Space";
spaceFrameProps?: SpaceFramePropsType;
error?: {
message: string;
};
loading: boolean;
closeInstance: boolean;
constructor(spaceService: SpaceService);
ngOnInit(): Promise<void>;
handleCloseInstance(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<Space, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<Space, "flatfile-space", never, { "spaceProps": { "alias": "spaceProps"; "required": false; }; "openDirectly": { "alias": "openDirectly"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
}