Skip to content

Commit

Permalink
chore: add a _version.pyi file
Browse files Browse the repository at this point in the history
  • Loading branch information
onerandomusername committed Jun 22, 2023
1 parent e3e292c commit fcc8475
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions disnake/_version.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# SPDX-License-Identifier: MIT

from typing import Literal, NamedTuple

class VersionInfo(NamedTuple):
major: int
minor: int
micro: int
releaselevel: Literal["alpha", "beta", "candidate", "final"]
serial: int

__version__: str
version_info: VersionInfo

0 comments on commit fcc8475

Please sign in to comment.