assets: mark assetOptions as internal (#4014)
internal for now until we figure out this PR: https://github.com/tldraw/tldraw/pull/3992 ### Change Type <!-- ❗ Please select a 'Scope' label ❗️ --> - [x] `sdk` — Changes the tldraw SDK - [ ] `dotcom` — Changes the tldraw.com web app - [ ] `docs` — Changes to the documentation, examples, or templates. - [ ] `vs code` — Changes to the vscode plugin - [ ] `internal` — Does not affect user-facing stuff <!-- ❗ Please select a 'Type' label ❗️ --> - [ ] `bugfix` — Bug fix - [ ] `feature` — New feature - [ ] `improvement` — Improving existing features - [x] `chore` — Updating dependencies, other boring stuff - [ ] `galaxy brain` — Architectural changes - [ ] `tests` — Changes to any test code - [ ] `tools` — Changes to infrastructure, CI, internal scripts, debugging tools, etc. - [ ] `dunno` — I don't know
This commit is contained in:
parent
cc035049ad
commit
baa71289ed
2 changed files with 2 additions and 0 deletions
|
@ -2520,6 +2520,7 @@ export const TldrawEditor: React_2.NamedExoticComponent<TldrawEditorProps>;
|
|||
|
||||
// @public
|
||||
export interface TldrawEditorBaseProps {
|
||||
// @internal
|
||||
assetOptions?: Partial<TLAssetOptions>;
|
||||
autoFocus?: boolean;
|
||||
bindingUtils?: readonly TLAnyBindingUtilConstructor[];
|
||||
|
|
|
@ -162,6 +162,7 @@ export interface TldrawEditorBaseProps {
|
|||
|
||||
/**
|
||||
* Asset options for the editor.
|
||||
* @internal
|
||||
*/
|
||||
assetOptions?: Partial<TLAssetOptions>
|
||||
|
||||
|
|
Loading…
Reference in a new issue