Skip to content

Commit 9d4ea34

Browse files
committed
Remove nonsense changes generated by extract-api?
1 parent 414cb0a commit 9d4ea34

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

common/api/core-backend.api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ export namespace CloudSqlite {
14181418
busyHandler?: WriteLockBusyHandler;
14191419
}, operation: () => Promise<T>): Promise<T>;
14201420
export type WriteLockBusyHandler = (lockedBy: string, expires: string) => Promise<void | "stop">;
1421-
{};
1421+
export {};
14221422
}
14231423

14241424
// @alpha
@@ -1669,7 +1669,7 @@ export interface ComputeGraphemeOffsetsArgs extends LayoutTextArgs {
16691669
}
16701670

16711671
// @beta
1672-
export function computeIntervalPoints({ frame, range, transform, lineIntervalFactor, arcIntervalFactor }: ComputeIntervalPointsArgs): Point3d[] | undefined;
1672+
export function computeIntervalPoints(input: ComputeIntervalPointsArgs): Point3d[] | undefined;
16731673

16741674
// @beta
16751675
export interface ComputeIntervalPointsArgs extends ComputeFrameArgs {
@@ -7731,7 +7731,7 @@ export namespace ViewStore {
77317731
modelSel?: RowId;
77327732
}
77337733
export type ViewStoreCtorProps = CloudSqlite.ContainerAccessProps & ViewDbCtorArgs;
7734-
{};
7734+
export {};
77357735
}
77367736

77377737
// @public @preview

common/api/core-frontend.api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1513,9 +1513,9 @@ export abstract class BaseUnitFormattingSettingsProvider implements UnitFormatti
15131513
abstract retrieveUnitSystem(defaultKey: UnitSystemKey): Promise<UnitSystemKey>;
15141514
abstract store(quantityTypeKey: QuantityTypeKey, overrideProps: OverrideFormatEntry): Promise<boolean>;
15151515
// (undocumented)
1516-
storeFormatOverrides: ({ typeKey, overrideEntry, unitSystem }: QuantityFormatOverridesChangedArgs) => Promise<void>;
1516+
storeFormatOverrides: (input: QuantityFormatOverridesChangedArgs) => Promise<void>;
15171517
abstract storeUnitSystemKey(unitSystemKey: UnitSystemKey): Promise<boolean>;
1518-
storeUnitSystemSetting: ({ system }: FormattingUnitSystemChangedArgs) => Promise<void>;
1518+
storeUnitSystemSetting: (input: FormattingUnitSystemChangedArgs) => Promise<void>;
15191519
}
15201520

15211521
// @public

common/api/ecschema-metadata.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,7 @@ export enum PropertyType {
15301530
}
15311531

15321532
// @internal (undocumented)
1533-
export function propertyTypeToString(type: PropertyType): "PrimitiveProperty" | "PrimitiveArrayProperty" | "StructProperty" | "StructArrayProperty" | "NavigationProperty";
1533+
export function propertyTypeToString(type: PropertyType): "PrimitiveProperty" | "StructProperty" | "StructArrayProperty" | "NavigationProperty" | "PrimitiveArrayProperty";
15341534

15351535
// @internal (undocumented)
15361536
export namespace PropertyTypeUtils {

0 commit comments

Comments
 (0)