mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +00:00
This prevents the include of the type defined in the pyi, otherwise this leads to error message like this: error: Name XYZ already defined (possibly by an import) [no-redef]
32 lines
800 B
Python
32 lines
800 B
Python
from __future__ import annotations
|
|
|
|
import flatbuffers
|
|
import numpy as np
|
|
|
|
import flatbuffers
|
|
import typing
|
|
|
|
uoffset: typing.TypeAlias = flatbuffers.number_types.UOffsetTFlags.py_type
|
|
|
|
class Test(object):
|
|
@classmethod
|
|
def SizeOf(cls) -> int: ...
|
|
|
|
def Init(self, buf: bytes, pos: int) -> None: ...
|
|
def A(self) -> int: ...
|
|
def B(self) -> int: ...
|
|
class TestT(object):
|
|
a: int
|
|
b: int
|
|
@classmethod
|
|
def InitFromBuf(cls, buf: bytes, pos: int) -> TestT: ...
|
|
@classmethod
|
|
def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> TestT: ...
|
|
@classmethod
|
|
def InitFromObj(cls, test: Test) -> TestT: ...
|
|
def _UnPack(self, test: Test) -> None: ...
|
|
def Pack(self, builder: flatbuffers.Builder) -> None: ...
|
|
|
|
def CreateTest(builder: flatbuffers.Builder, a: int, b: int) -> uoffset: ...
|
|
|