mirror of
https://github.com/CompeyDev/rusty-luau.git
synced 2024-12-12 04:40:40 +00:00
fix(Future): dont export Result
type
This commit is contained in:
parent
cd10bd86fc
commit
b11ac303ea
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ local Signal = mod.signal
|
|||
type Signal<T...> = mod.Signal<T...>
|
||||
|
||||
local result = require("result")
|
||||
export type Result<T, E> = result.Result<T, E>
|
||||
type Result<T, E> = result.Result<T, E>
|
||||
local Ok = result.Ok
|
||||
local Err = result.Err
|
||||
|
||||
|
|
Loading…
Reference in a new issue