This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import List, Type, TypeVar | |
T = TypeVar("T", bound="Autoparser") | |
class Autoparser: | |
"""Automatic parse into parseable classes.""" | |
def __repr__(self): | |
exclude = (classmethod,) | |
attrs = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import type { Map, IControl } from 'mapbox-gl'; | |
import useTerrain, { type ExtrusionOptions } from './terrain'; | |
import type { Prettify } from '/@/types/utilities'; | |
export type TerrainControlOptions = Prettify<{ | |
init?: boolean, | |
pitch?: number; | |
} & ExtrusionOptions>; | |
export default class TerrainControl implements IControl { |
OlderNewer