diff --git a/std/assembly/index.d.ts b/std/assembly/index.d.ts index c9ab77c1..29c7e3c5 100644 --- a/std/assembly/index.d.ts +++ b/std/assembly/index.d.ts @@ -932,28 +932,28 @@ declare function global( declare function operator(token: string): ( target: any, propertyKey: string, - descriptor: TypedPropertyDescriptor -) => TypedPropertyDescriptor | void; + descriptor: TypedPropertyDescriptor +) => TypedPropertyDescriptor | void; declare namespace operator { /** Annotates a method as a binary operator overload for the specified `token`. */ export function binary(token: string): ( target: any, propertyKey: string, - descriptor: TypedPropertyDescriptor - ) => TypedPropertyDescriptor | void; + descriptor: TypedPropertyDescriptor + ) => TypedPropertyDescriptor | void; /** Annotates a method as an unary prefix operator overload for the specified `token`. */ export function prefix(token: string): ( target: any, propertyKey: string, - descriptor: TypedPropertyDescriptor - ) => TypedPropertyDescriptor | void; + descriptor: TypedPropertyDescriptor + ) => TypedPropertyDescriptor | void; /** Annotates a method as an unary postfix operator overload for the specified `token`. */ export function postfix(token: string): ( target: any, propertyKey: string, - descriptor: TypedPropertyDescriptor - ) => TypedPropertyDescriptor | void; + descriptor: TypedPropertyDescriptor + ) => TypedPropertyDescriptor | void; } /** Annotates a class as being unmanaged with limited capabilities. */ @@ -966,12 +966,12 @@ declare function sealed(constructor: Function): void; declare function inline( target: any, propertyKey: string, - descriptor: TypedPropertyDescriptor -): TypedPropertyDescriptor | void; + descriptor: TypedPropertyDescriptor +): TypedPropertyDescriptor | void; /** Annotates an explicit external name of a function or global. */ declare function external(namespace: string, name: string): ( target: any, propertyKey: string, - descriptor: TypedPropertyDescriptor -) => TypedPropertyDescriptor | void; + descriptor: TypedPropertyDescriptor +) => TypedPropertyDescriptor | void;