docs: fix SemverResult generic type missing an equals

This commit is contained in:
Erica Marigold 2024-11-11 16:09:12 +05:30 committed by GitHub
parent 5ac57f9661
commit 97aefcc2b4

View file

@ -106,7 +106,7 @@ export type Version = {
}
--[=[
@type SemverResult<T, E = SemverError> Result<T, E>
@type SemverResult<T, E = SemverError> = Result<T, E>
@within Semver
]=]
export type SemverResult<T, E = SemverError> = Result<T, E>