Files
read_aconity_layers/read_layers.pyi

8 lines
202 B
Python

from typing import List
from numpy import ndarray
def read_layers(folder: str) -> ndarray: ...
def read_selected_layers(file_list: List[str]) -> ndarray: ...
def read_layer(file: str) -> ndarray: ...