File: PyKOpeningHours.pyi

package info (click to toggle)
kopeninghours 25.04.2-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 920 kB
  • sloc: cpp: 3,918; yacc: 795; lex: 335; python: 18; sh: 17; makefile: 16
file content (27 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# SPDX-FileCopyrightText: 2020 David Faure <faure@kde.org>
# SPDX-License-Identifier: LGPL-2.0-or-later

from typing import Any

class Error():
    EvaluationError: Any = ...
    IncompatibleMode: Any = ...
    MissingLocation: Any = ...
    MissingRegion: Any = ...
    NoError: Any = ...
    Null: Any = ...
    SyntaxError: Any = ...
    UnsupportedFeature: Any = ...
    names: Any = ...
    values: Any = ...

class Mode():
    IntervalMode: Any = ...
    PointInTimeMode: Any = ...
    names: Any = ...
    values: Any = ...

class OpeningHours():
    def error(self) -> Error: ...
    def normalizedExpression(self) -> str: ...
    def setExpression(self, str) -> None: ...