format
This commit is contained in:
12
types/Struct.d.ts
vendored
12
types/Struct.d.ts
vendored
@ -1,7 +1,9 @@
|
||||
import { SerializableType, Type } from "."
|
||||
import { SerializableType, Type } from '.'
|
||||
|
||||
/**
|
||||
* constructs type of c-like structure. if field is headless, inside of structure will be stored u32 offset, outside of structure will be stored value of field
|
||||
* @returns {Type}
|
||||
*/
|
||||
export function Struct(type_obj: Record<string, SerializableType | SerializableType[]>): Type;
|
||||
* constructs type of c-like structure. if field is headless, inside of structure will be stored u32 offset, outside of structure will be stored value of field
|
||||
* @returns {Type}
|
||||
*/
|
||||
export function Struct(
|
||||
type_obj: Record<string, SerializableType | SerializableType[]>,
|
||||
): Type
|
||||
|
||||
Reference in New Issue
Block a user