mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-20 02:49:49 +01:00
doc/Plugins/Plang.md: add type annotations
This commit is contained in:
parent
c929d4c68f
commit
7c6359481a
@ -38,7 +38,7 @@ is preserved in-between commands and the types of values is output along with th
|
|||||||
Several have been added for PBot; they are described here.
|
Several have been added for PBot; they are described here.
|
||||||
|
|
||||||
### factget
|
### factget
|
||||||
factget(channel, keyword, meta = "action")
|
factget(channel: String, keyword: String, meta: String = "action") -> String
|
||||||
|
|
||||||
Use the `factget` function to retrieve metadata from factoids.
|
Use the `factget` function to retrieve metadata from factoids.
|
||||||
|
|
||||||
@ -48,7 +48,7 @@ parameter can be omitted and will default to `"action"`.
|
|||||||
The `factget` function returns a `String` containing the value of the factoid metadata key.
|
The `factget` function returns a `String` containing the value of the factoid metadata key.
|
||||||
|
|
||||||
### factset
|
### factset
|
||||||
factset(channel, keyword, text)
|
factset(channel: String, keyword: String, text: String) -> String
|
||||||
|
|
||||||
Use the `factset` function to set the `action` metadata value for factoids.
|
Use the `factset` function to set the `action` metadata value for factoids.
|
||||||
|
|
||||||
@ -57,7 +57,7 @@ The `factset` function takes three parameters: `channel`, `keyword` and `text`.
|
|||||||
The `factset` function returns a `String` containing the value of `text`.
|
The `factset` function returns a `String` containing the value of `text`.
|
||||||
|
|
||||||
### factappend
|
### factappend
|
||||||
factappend(channel, keyword, text)
|
factappend(channel: String, keyword: String, text: String) -> String
|
||||||
|
|
||||||
Use the `factappend` function to append text to the `action` metadata for factoids.
|
Use the `factappend` function to append text to the `action` metadata for factoids.
|
||||||
|
|
||||||
@ -67,7 +67,7 @@ The `factappend` function returns a `String` containing the value of factoid's `
|
|||||||
metadata with `text` appended.
|
metadata with `text` appended.
|
||||||
|
|
||||||
### userget
|
### userget
|
||||||
userget(name)
|
userget(name: String) -> Map
|
||||||
|
|
||||||
Use the `userget` function to retrieve user metadata.
|
Use the `userget` function to retrieve user metadata.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user