@elyx-code/project-logic-tree 0.0.6405 → 0.0.6407
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -0
- package/dist/index.js +15663 -15584
- package/dist/index.umd.cjs +77 -77
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4364,6 +4364,8 @@ export declare class FunctionDeclarationState extends VersionedState implements
|
|
|
4364
4364
|
addReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
|
|
4365
4365
|
removeReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
|
|
4366
4366
|
getUniqueReturnDeclarations(): ReturnDeclarationState[];
|
|
4367
|
+
removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
|
|
4368
|
+
syncInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
|
|
4367
4369
|
}
|
|
4368
4370
|
|
|
4369
4371
|
export declare type FunctionDeclarationTypesUnion = IFunctionDeclaration | IFunctionDeclarationTransfer | IFunctionDeclarationShallowTransfer | IFunctionDeclarationGenerationTarget;
|