# Export

## Callback

```lua
exports["Var-PinCode"]:SendToPinCode("1234", function(result)
    if result then 
        print("Code correct") 
    else
        print("Code incorrect") 
    end
end)
```

## Synchrone

```lua
local Result = exports["Var-PinCode"]:SendToPinCodeSync("1234")
```

## Commands

<table><thead><tr><th>Command</th><th width="238">Description</th></tr></thead><tbody><tr><td>/pin</td><td>Opens test PIN UI with <code>1234</code></td></tr></tbody></table>
