@sap/generator-fiori
Version:
Create an SAPUI5 application using SAP Fiori elements or a freestyle approach
29 lines • 1.06 kB
TypeScript
/**
* Provides an adaptor to launch from BAS Storyboard where no datasource is provided (`serviceConnectivityData`)
*/
import type { AdaptorState } from './types';
import type { FioriAppGeneratorOptions } from '@sap-ux/fiori-app-sub-generator';
export interface StoryboardNoDatasource {
targetPath?: string;
projectName?: string;
type?: string;
wizardMessage?: FioriAppGeneratorOptions['wizardMessage'];
}
export declare class StoryboardNoDatasourceAdaptor {
/**
* Determines if this data is of type StoryboardNoDatasource
*
* @param extData, external data passed to a generator
* @returns true if input matches the current adaptor
*/
private static isStoryboardNoDatasource;
/**
* Transform an external input to a an internal app config representation
* validating that it is a StoryboardNoDatasource object
*
* @param extInput, external input
* @returns
*/
static transform(extInput: unknown): Partial<AdaptorState>;
}
//# sourceMappingURL=storyboard-no-datasource.d.ts.map