Skip to content

Commit

Permalink
chore(): update docs etc
Browse files Browse the repository at this point in the history
  • Loading branch information
easyops-eve committed Nov 27, 2024
1 parent 9b43ad1 commit 74f5144
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion etc/brick-kit.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ import { StoryboardFunction } from '@next-core/brick-types';
import { StoryConf } from '@next-core/brick-types';
import { Subtract } from 'react-i18next';
import { TemplatePackage } from '@next-core/brick-types';
import { TransformedFunction } from '@next-core/brick-types';
import { UseBrickConf } from '@next-core/brick-types';
import { UseProviderResolveConf } from '@next-core/brick-types';
import { UserInfo } from '@next-core/brick-types';
Expand Down Expand Up @@ -587,6 +588,8 @@ export interface RuntimeStoryboardFunction {
// (undocumented)
source: string;
// (undocumented)
transformed?: TransformedFunction;
// (undocumented)
typescript?: boolean;
}

Expand All @@ -602,7 +605,7 @@ export function SingleBrickAsComponentFactory(React: typeof _React): React_2.Mem
// Warning: (ae-internal-missing-underscore) The name "StoryboardFunctionPatch" should be prefixed with an underscore because the declaration is marked as @internal
//
// @internal (undocumented)
export type StoryboardFunctionPatch = Pick<StoryboardFunction, "source" | "typescript">;
export type StoryboardFunctionPatch = Pick<StoryboardFunction, "source" | "typescript" | "transformed">;

// Warning: (ae-internal-missing-underscore) The name "StoryboardFunctionRegistry" should be prefixed with an underscore because the declaration is marked as @internal
//
Expand Down

0 comments on commit 74f5144

Please sign in to comment.