9.0.10076 • Published 4 years ago

@acoustic-content-sdk/tooling-feature-module v9.0.10076

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

npm

Tooling functions to implement support for feature modules.

API Documentation

Home > @acoustic-content-sdk/tooling-feature-module

tooling-feature-module package

Tooling functions to implement support for feature modules.

Functions

FunctionDescription
generateFeatureModule(options)Command to add ng-add support to a feature module.

Interfaces

InterfaceDescription
GenerateFeatureModuleSchema

Variables

VariableDescription
VERSIONVersion and build number of the package

Home > @acoustic-content-sdk/tooling-feature-module > generateFeatureModule

generateFeatureModule() function

Command to add ng-add support to a feature module.

Signature:

export declare function generateFeatureModule(options: GenerateFeatureModuleSchema): (aReadText: ReadTextFile, aLogSvc?: LoggerService) => Observable<FileDescriptor<string>>;

Parameters

ParameterTypeDescription
optionsGenerateFeatureModuleSchemathe schematics object used to describe the feature module

Returns:

(aReadText: ReadTextFile, aLogSvc?: LoggerService) => Observable<FileDescriptor<string>>

the command

Home > @acoustic-content-sdk/tooling-feature-module > GenerateFeatureModuleSchema

GenerateFeatureModuleSchema interface

Signature:

export interface GenerateFeatureModuleSchema 

Properties

PropertyTypeDescription
modulestringName of the module, may be a comma separated list

Home > @acoustic-content-sdk/tooling-feature-module > VERSION

VERSION variable

Version and build number of the package

Signature:

VERSION: {
    version: {
        major: string;
        minor: string;
        patch: string;
        branch: string;
    };
    build: Date;
}

Home > @acoustic-content-sdk/tooling-feature-module > GenerateFeatureModuleSchema > module

GenerateFeatureModuleSchema.module property

Name of the module, may be a comma separated list

Signature:

module: string;